DataSource for Entity Framework in WPF
C1.LiveLinq.Listeners Namespace / PropertyChangeListener<T> Class / StopListening Method
The object to stop listening to.

In This Topic
    StopListening Method
    In This Topic
    Stop listening to property changes in a particular object.
    Syntax
    'Declaration
     
    Public MustOverride Sub StopListening( _
       ByVal item As T _
    ) 
    public abstract void StopListening( 
       T item
    )

    Parameters

    item
    The object to stop listening to.
    Remarks
    LiveLinq calls this method when an object is removed from a collection, so LiveLinq no longer needs to be notified of changes to property values in that object.
    See Also